}
});
return getDriver().findElement(By.id("documents-document_list"))
.findElements(By.tagName("li"));
}
private List<WebElement> getVersionTabDocumentList() {
List<WebElement> rows =
getDriver().findElement(By.id("documents-document_list"))
.findElements(By.xpath("./li"));
return rows;
}